/* ===== GLOBAL RESETS ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #f9fdfb;
  color: #222;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  color: #024c25; /* brand dark green */
  font-weight: 700;
}

a {
  color: #024c25;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #4caf50; /* lighter green accent */
}

/* ===== HEADER ===== */
header {
  background: #024c25;
  color: #fff;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo img {
  height: 60px;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

header nav ul li a {
  color: #fff;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 4px;
  transition: 0.3s;
}

header nav ul li a:hover,
header nav ul li a.active {
  background: #4caf50; /* lighter green */
  color: #fff;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  text-align: center;
  padding: 120px 20px;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(2, 76, 37, 0.7);
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
}

/* ===== INTRO ===== */
.about-intro {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.about-intro h2 {
  margin-bottom: 20px;
}

/* ===== FOUNDER SECTION ===== */
.founder-section {
  padding: 60px 20px;
  background: #f1f8f4;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: center;
}

.founder-photo img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.founder-bio ul {
  margin: 20px 0;
  list-style: none;
}

.founder-bio ul li {
  margin: 10px 0;
  display: flex;
  align-items: center;
}

.founder-bio ul li i {
  color: #4caf50;
  margin-right: 10px;
}

/* ===== MISSION GRID ===== */
.mission-grid {
  padding: 60px 20px;
  background: #fff;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.mission-block {
  background: #f1f8f4;
  padding: 25px;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.mission-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(2,76,37,0.2);
}

/* ===== VALUES SECTION ===== */
.values-section {
  padding: 60px 20px;
  background: #eaf4ec;
}

.objectives, .values {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* ===== GALLERY ===== */
.gallery {
  padding: 60px 20px;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.4s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* ===== FOOTER ===== */
footer {
  background: #024c25;
  color: #fff;
}

.footer-top {
  padding: 50px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 10px;
}

.footer-sitemap ul {
  list-style: none;
}

.footer-sitemap ul li {
  margin: 6px 0;
}

.footer-sitemap ul li a {
  color: #ddd;
  transition: 0.3s;
}

.footer-sitemap ul li a:hover {
  color: #fff;
}

.footer-social .social-icons a {
  display: inline-block;
  color: #fff;
  font-size: 1.4rem;
  margin-right: 15px;
  transition: 0.3s;
}

.footer-social .social-icons a:hover {
  color: #4caf50;
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.9rem;
}
/* ===== SCROLL PROGRESS BAR ===== */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  background: #024c25; /* brand dark green */
  width: 0%;
  z-index: 2000;
  transition: width 0.25s ease-out;
}
